/* Container */
.team-page {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

/* Card Style */
.team-card {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    max-width: 600px;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

/* Upper Content */
.upper_content img.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.upper_content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
}

/* Lower Content */
.lower_content .main_heading {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

/* Input */
form-control, #myInput {
    width: 100%;
    padding: 0.65rem 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    border-radius: 0.45rem;
    border: 1px solid #dbe4ec;
    outline: none;
    background-color: #fbfdff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#myInput:focus {
    border-color: #7fb3d5;
    box-shadow: 0 0 0 3px rgba(127,179,213,0.18);
    background-color: #ffffff;
}

/* Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn.save-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.btn.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(80,159,201,0.35);
    opacity: 0.95;
}

.whatsapp-btn {
    background-color: #25d366 !important;
}
.copy-link {
    background-color: black !important;
}

/* Responsive */
@media (max-width: 768px) {
    .team-card {
        padding: 1.5rem 2rem;
    }

    .upper_content h2, .lower_content .main_heading {
        font-size: 1.3rem;
    }

    #myInput {
        font-size: 1rem;
        padding: 0.55rem 0.8rem;
    }

    .btn.save-btn {
        font-size: 1rem;
        padding: 0.55rem 1rem;
    }
}

@media (max-width: 480px) {
    .upper_content img.avatar-img {
        width: 60px;
        height: 60px;
    }

    #myInput {
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem;
    }

    .btn.save-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.9rem;
    }
}
