/* assets/css/base.css */

/* Universal Box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Body Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0; /* Padding akan diatur oleh main-content */
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Messages (Error, Success, Info) */
.message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.info-message {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* No Data Message */
.no-data {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 1.2em;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background-color: #fcfcfc;
    margin-top: 20px;
}
