/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.navbar-brand img{
    height: 60px;
}

nav.navbar{
    background-color: #ffd1db;
}

.pink1 {
    color: #e15d7f;
}

.pink2 {
    color: #f08392;
}

.btn-pink1 {
    background-color: #e15d7f;
    color: white;
}

h1.pink1 {
    color: #e15d7f;
    font-size: 26px;
    margin-top: 16px;
}

.for-admin {
    background-color: #eee;    
}

footer {
    border-top: 1px solid #d3d3d3;
    padding: 24px 0 16px 0;
    margin-top: 40px;
    color: #696969;
    font-size: 14px;
}

.footer-nav {
    margin-bottom: 16px;
    gap: 16px;
    align-items: center;
}

.footer-link {
    color: #696969;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #333;
    text-decoration: underline;
}

.footer-separator {
    color: #ccc;
    font-size: 12px;
    margin: 0 4px;
}

.footer-copyright {
    padding-top: 12px;
    border-top: 1px solid #eeeeee;
    color: #999;
    font-size: 12px;
}

@media (max-width: 576px) {
    footer {
        padding: 20px 0 12px 0;
        font-size: 13px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-copyright {
        font-size: 11px;
        padding-top: 8px;
    }
}