:root {
    --bs-primary: #00b894;
    --bs-primary-rgb: 0, 184, 148;
    --bs-body-bg: #f1f2f6;
    --bs-link-color: #00b894;
    --bs-link-hover-color: #008c70;
}

body {
    background-color: var(--bs-body-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
}

/* Footer */
.footer {
    background-color: #2d3436;
    color: #b2bec3;
    padding: 20px 0;
    margin-top: 40px;
}

.footer a {
    color: #00b894;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Navbar Customization */
.navbar {
    background-color: #2d3436 !important; /* Dark Grey */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
    color: #00b894 !important; /* Mint Green */
}

/* Buttons */
.btn-primary {
    background-color: #00b894;
    border-color: #00b894;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #00a383 !important;
    border-color: #00a383 !important;
}

.btn-outline-primary {
    color: #00b894;
    border-color: #00b894;
}

.btn-outline-primary:hover {
    background-color: #00b894;
    border-color: #00b894;
    color: #fff;
}

/* Cards & UI Elements */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.user-avatar-lg {
    width: 128px;
    height: 128px;
    border: 4px solid #fff;
}

.card-post {
    transition: box-shadow 0.2s;
}

.card-post:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Custom Alert Colors to match theme */
.alert-info {
    background-color: #d1f2eb;
    border-color: #bcede4;
    color: #0e6655;
}
