/* Custom Styles for Journal System */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --bg-light: #f8f9fa;
}

body, table, ul, ol {
    font-size: 14px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
}

.card {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.status-badge {
    font-size: 0.85rem;
    padding: 0.4em 0.8em;
    border-radius: 20px;
}

.timeline {
    border-left: 2px solid #dee2e6;
    padding-left: 20px;
    margin-left: 10px;
    position: relative;
}

.timeline-item {
    margin-bottom: 20px;
    position: relative;
}



.footer {
    background-color: #fff;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #dee2e6;
}

/* Auth Page Styles */
.auth-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.auth-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
    padding: 20px;
    text-align: center;
}