/* Global Styles */
body {
    background-color: #f8f9fa;
    color: #343a40;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Navigation */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.navbar-logo {
    height: 40px;
    width: auto;
}

/* Buttons */
.btn-primary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-primary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-primary:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    opacity: 0.65;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

/* Footer */
footer {
    flex-shrink: 0;
    background: linear-gradient(to right, #e9ecef 0%, #ced4da 100%);
}

/* Social Buttons */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 36px;
    border-radius: 6px;
    margin: 0 5px;
    padding: 0 12px;
    background-color: #f8f9fa;
    border: 1px solid #6c757d;
    color: #6c757d;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #6c757d;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-btn:hover svg {
    fill: #ffffff;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: #6c757d;
    margin-right: 6px;
    transition: fill 0.3s ease;
}

/* Suggestion Box (Index page) */
.suggestion-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 1rem;
}

.suggestion-item {
    background-color: white;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Profile Image (Team page) */
.profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.profile-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Pricing Cards (Products page) */
.pricing-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .15);
}

.pricing-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card .price small {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-card .feature-list {
    list-style-type: none;
    padding-left: 0;
}

.pricing-card .feature-list li {
    margin-bottom: 0.5rem;
}

.pricing-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.pricing-card .btn-wrapper {
    margin-top: auto;
}

/* Product Cards (Products page) */
.products-section {
    padding: 4rem 0;
}

.product-card {
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
}