/* Dook My Account Dashboard Styles */
.dook-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dook-dashboard-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    color: #151b29;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.dook-dashboard-card:hover {
    border-color: #151b29;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
    color: #151b29;
}

.dook-card-icon {
    margin-bottom: 15px;
}

.dook-card-icon img {
    height: 48px;
    width: 48px;
}

.dook-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

