/* Dashboard Page Styles */
.dashboard-container {
    padding: 140px 8% 10px;
    background: #ECF4E5;
    min-height: 100vh;
    animation: fadeIn 0.8s ease-out;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-mist);
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumbs span[aria-current="page"] {
    color: var(--text-main);
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
    color: #000000;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #000000;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-mist);
}

.btn-post-project {
    background: var(--maroon-grad);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(179, 82, 106, 0.25);
    text-decoration: none;
    white-space: nowrap;
}

.btn-post-project:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(179, 82, 106, 0.35);
}

.btn-post-project:active {
    transform: translateY(-1px);
}

.btn-post-project i,
.btn-post-project svg {
    width: 18px;
    height: 18px;
}

/* Chat Button in Team Cards */
.btn-chat-team-card {
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.18);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-chat-team-card:hover {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-chat-team-card i,
.btn-chat-team-card svg {
    width: 15px;
    height: 15px;
}

/* Tabs */
.dashboard-tabs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.5rem;
}

.tab-item {
    background: none;
    border: none;
    color: var(--text-mist);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0.2rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-item:hover {
    color: var(--primary-color);
}

.tab-item.active {
    color: var(--primary-color);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -0.6rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #111827;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-mist);
    font-weight: 500;
}

/* Content Grid */
.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



/* Horizontal Transparent Cards */
.horizontal-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: var(--text-main);
}

.horizontal-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
}

/* Base Internal Elements */
.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

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

.card-content {
    flex: 1;
}

.card-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card-content p {
    font-size: 1.05rem;
    color: var(--text-mist);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.card-content .sub-text {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

.card-action {
    display: flex;
    align-items: center;
}

.btn-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.btn-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(179, 82, 106, 0.3);
}

.btn-arrow i {
    width: 24px;
    height: 24px;
    color: white;
}

/* Empty State override */
.horizontal-card .empty-state {
    flex: none;
    padding: 0;
    text-align: left;
    justify-content: flex-start;
    color: var(--text-mist);
}

/* Footer Section */
footer {
    background: #f9fafb;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 8% 20px;
    color: #111827;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 20px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-brand .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-brand .tags span {
    background: rgba(0, 0, 0, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.link-group h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-group a {
    color: var(--text-mist);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-subscribe h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-subscribe p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.subscribe-form {
    display: flex;
    margin-bottom: 1.5rem;
}

.subscribe-form input {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px 0 0 8px;
    padding: 0.8rem 1rem;
    color: #111827;
    width: 100%;
}

.subscribe-form button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links i {
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.social-links i:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

/* Responsive */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid> :nth-child(4) {
        grid-column: auto;
    }
}

@media (max-width: 992px) {
    .dashboard-container {
        padding: 110px 5% 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .horizontal-card {
        padding: 2rem 2.5rem;
        gap: 2rem;
        border-radius: 28px;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 100px 4% 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
        border-radius: 18px;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn-post-project {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.8rem;
    }

    .horizontal-card {
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
        gap: 1.25rem;
        text-align: left;
    }

    .horizontal-card .card-icon {
        width: 44px;
        height: 44px;
    }

    .horizontal-card .card-icon i {
        width: 32px;
        height: 32px;
    }

    .card-content h2 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .card-action {
        align-self: flex-end;
    }

    .btn-arrow {
        width: 42px;
        height: 42px;
    }

    .btn-arrow i {
        width: 20px;
        height: 20px;
    }

    .dashboard-tabs {
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 0.75rem;
    }

    .dashboard-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-item {
        font-size: 0.9rem;
        white-space: nowrap;
        padding: 0.5rem 0.6rem;
    }

    /* Application items mobile */
    .application-item {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .application-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .applicant-info {
        gap: 0.75rem;
    }

    .applicant-avatar,
    .applicant-avatar-placeholder {
        width: 40px;
        height: 40px;
    }

    .applicant-name {
        font-size: 0.95rem;
    }

    .application-project {
        font-size: 0.8rem;
    }

    .application-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .btn-accept,
    .btn-reject,
    .btn-cancel-application,
    .btn-view-profile,
    .btn-view-project {
        flex: 1;
        min-width: 0;
        text-align: center;
        padding: 0.6rem 0.75rem;
        font-size: 0.82rem;
    }

    .application-message {
        font-size: 0.85rem;
        padding: 0.85rem;
    }

    /* Team cards mobile */
    .team-card-item {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .team-card-header {
        flex-direction: column;
        gap: 0.6rem;
    }

    .team-project-title {
        font-size: 0.95rem;
    }

    .team-project-meta {
        font-size: 0.8rem;
    }

    .team-project-desc {
        font-size: 0.85rem;
    }

    .team-card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-view-team-project,
    .btn-chat-team-card,
    .btn-leave-team-card {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.65rem 1rem;
    }

    /* Recommended projects mobile */
    .recommended-project-item {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .recommended-project-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .recommended-project-title {
        font-size: 0.95rem;
    }

    .recommended-project-meta {
        font-size: 0.8rem;
    }

    .recommended-project-desc {
        font-size: 0.85rem;
    }

    .recommended-project-skills {
        gap: 0.4rem;
    }

    .skill-tag-small {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .recommended-project-actions {
        width: 100%;
    }

    .btn-view-recommended {
        width: 100%;
        text-align: center;
        padding: 0.65rem 1rem;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 0.82rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-container {
        padding: 90px 3.5% 40px;
    }

    .hero-text h1 {
        font-size: 1.65rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .btn-post-project {
        padding: 0.75rem 1.4rem;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.6rem;
    }

    .stat-card {
        padding: 1rem 0.5rem;
        border-radius: 14px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .horizontal-card {
        padding: 1.15rem;
        border-radius: 16px;
        gap: 1rem;
    }

    .horizontal-card .card-icon {
        width: 38px;
        height: 38px;
    }

    .horizontal-card .card-icon i {
        width: 28px;
        height: 28px;
    }

    .card-content h2 {
        font-size: 1.1rem;
    }

    .card-content p {
        font-size: 0.85rem;
    }

    .dashboard-tabs {
        gap: 0.25rem;
        margin-bottom: 1.5rem;
    }

    .tab-item {
        font-size: 0.82rem;
        padding: 0.4rem 0.5rem;
    }

    .application-item,
    .team-card-item,
    .recommended-project-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    /* Make empty state CTAs full-width on small mobile */
    .empty-state a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .match-score-badge {
        font-size: 0.68rem;
        padding: 0.15rem 0.45rem;
    }

    .role-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }

    .team-status-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .application-status {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Team Members Avatar Stack */
.team-members-stack {
    margin: 0.5rem 0 0.25rem;
}

.members-avatar-row {
    display: flex;
    align-items: center;
}

.stack-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    background: #ECF4E5;
}

.stack-avatar:first-child {
    margin-left: 0;
}

.stack-avatar:hover {
    transform: scale(1.15) translateY(-2px);
    z-index: 2;
}

.stack-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(179, 82, 106, 0.12);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: -8px;
    border: 2px solid white;
}

/* Applications Styles */
.applications-container {
    margin-top: 1.5rem;
}

.application-item {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.application-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.application-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.applicant-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.applicant-avatar,
.applicant-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.applicant-avatar {
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.applicant-avatar-placeholder {
    background: var(--maroon-grad);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.applicant-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.application-project {
    font-size: 0.85rem;
    color: var(--text-mist);
}

.application-status {
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending {
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.status-accepted {
    background: rgba(52, 211, 153, 0.2);
    color: #059669;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.application-message {
    color: var(--text-mist);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.application-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject,
.btn-cancel-application,
.btn-view-profile,
.btn-view-project {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background: rgba(52, 211, 153, 0.2);
    color: #059669;
}

.btn-accept:hover {
    background: rgba(52, 211, 153, 0.3);
    transform: translateY(-1px);
}

.btn-reject {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.btn-reject:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.btn-cancel-application {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.btn-cancel-application:hover {
    background: rgba(0, 0, 0, 0.1);
}

.btn-view-profile,
.btn-view-project {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-view-profile:hover,
.btn-view-project:hover {
    background: var(--primary-color);
    color: white;
}

/* Teams Container Styles */
.teams-container {
    margin-top: 1.5rem;
}

.team-card-item {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.team-card-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.team-project-title {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.team-project-meta {
    font-size: 0.85rem;
    color: var(--text-mist);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.role-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.role-badge.creator {
    background: rgba(179, 82, 106, 0.2);
    color: var(--primary-color);
}

.role-badge.member {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.team-status-badge {
    padding: 0.3rem 0.7rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.team-status-badge.status-open {
    background: rgba(52, 211, 153, 0.2);
    color: #059669;
}

.team-project-desc {
    color: var(--text-mist);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.team-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-view-team-project {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-team-project:hover {
    background: var(--primary-color);
    color: white;
}

.btn-leave-team-card {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-leave-team-card:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Recommended Projects Styles */
.recommended-projects-container {
    margin-top: 1.5rem;
}

.recommended-project-item {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border-left: 4px solid var(--primary-color);
}

.recommended-project-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.recommended-project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.recommended-project-title {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.recommended-project-meta {
    font-size: 0.85rem;
    color: var(--text-mist);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.match-score-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: auto;
}

.recommended-project-desc {
    color: var(--text-mist);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.recommended-project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skill-tag-small {
    background: rgba(124, 92, 180, 0.1);
    color: #7c5cb4;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.skill-more {
    color: var(--text-mist);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.recommended-project-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-view-recommended {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-recommended:hover {
    background: #9a3f5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(179, 82, 106, 0.3);
}

/* My Projects Section Specifics */
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.project-card-item {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.project-card-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

.project-card-meta {
    font-size: 0.85rem;
    color: var(--text-mist);
    margin-top: 0.2rem;
}

.project-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.project-card-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-edit-project,
.btn-delete-project {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-edit-project {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.btn-edit-project:hover {
    background: #1e40af;
    color: white;
}

.btn-delete-project {
    background: rgba(185, 28, 28, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(185, 28, 28, 0.2);
}

.btn-delete-project:hover {
    background: #b91c1c;
    color: white;
}