/*
 * 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.
 */
@font-face {
    font-family: "Segoe UI";
    src: url("/assets/fonts/segoe-ui-21c304d3.ttf") format("truetype");
}


body {
    min-height: 100vh;
    background: linear-gradient(120deg, gainsboro, ghostwhite, whitesmoke, lightgray, oldlace) no-repeat center center;
    color: black;
    font-family: "Segoe UI", Arial, sans-serif;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;

}




.main-content {
    flex: 1; 
}

/* GitHub-style pagination */
.pagination {
    padding: 3px;
    margin: 3px;
    text-align: center;
}

.pagination a,
.pagination span {
    padding: 2px 5px;
    margin: 2px;
    border: 1px solid #ddd;
    text-decoration: none;
}

.pagination .current {
    background: #6a737d;
    color: white;
    border-color: #6a737d;
}

.pagination a:hover {
    background: #f3f4f6;
}

/*extra */

:root {
    --bg:#050b19;
    --surface:#0d1a34;
    --surface-raised:#13254a; 
    --text:#f2f6ff; 
    --muted:#b7c6de; 
    --line:#304b72; 
    --primary:#ed183c; 
    --primary-dark:#ff5570; 
    --accent:#aeb8c8; 
    --accent-ink:#101d32; 
    --success:#77dcad; 
    --shadow:0 18px 40px rgba(0,0,0,.30);
}