﻿/* Touch-Friendly Input Fields */
.touch-friendly-input,
.form-control {
    height: 50px;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #02DAC5;
    background-color: #02DAC5;
    color: white !important;
    transition: all 0.3s ease;
}

/* Focus (active) style */
.touch-friendly-input:focus,
.form-control:focus {
    background-color: white;
    color: #000 !important;
    border-color: #02DAC5;
    box-shadow: 0 0 0 4px rgba(2, 218, 197, 0.25);
    outline: none;
}
.bg-theme, .btn-outline-secondary {
    --bs-bg-opacity: 1;
    border: #02DAC5 1px solid !important;

    color: #02DAC5 !important; 
}


.touch-friendly-input::placeholder, .form-control {
    color: #b3b3b3;
}
.nav-link {
    transition: all 0.3s ease;
}
.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding-inline: 0.75rem;
}

.touch-friendly-btn {
    height: 55px;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s ease;
    background-color: #02DAC5;
    border: none;
}

.touch-friendly-btn:hover {
    background-color: #01c3b1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px !important;
    }

    .card {
        padding: 5px;
    }

    .touch-friendly-input, .form-control {
        font-size: 16px;
        height: 48px;
    }

    .touch-friendly-btn {
        font-size: 16px;
        height: 50px;
    }
}
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .profile-pic {
        margin-right: 0;
    }
}