/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-red: #ff6b6b;
    --blue-tone: #4a90e2;
    --dark-blue: #2c3e50;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-gray);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--light-red), var(--blue-tone));
    color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.org-name h1 {
    font-size: 15px;
    margin: 0;
}

/* Clock Styles */
.clock {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: var(--transition);
}

.clock:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    background: rgba(0,0,0,0.1);
    border-radius: 5px;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* AI Space - Modern Visual */
.ai-space {
    background: linear-gradient(45deg, var(--light-red), var(--blue-tone));
    padding: 40px;
    margin: 20px 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.ai-space::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: move 20s linear infinite;
}

@keyframes move {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--light-red), var(--blue-tone));
    color: var(--white);
    padding: 15px;
    font-size: 15px;
}

.card-body {
    padding: 15px;
}

/* Notice Board */
.notice-board {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.notice-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.notice-item:hover {
    background: var(--light-gray);
    padding-left: 20px;
}

.notice-item .new-badge {
    background: var(--light-red);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-table th,
.schedule-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.schedule-table th {
    background: var(--blue-tone);
    color: var(--black);
    font-size: 15px;
}

.schedule-table tr:hover {
    background: var(--light-black);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--blue-tone);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-danger {
    background: var(--light-red);
    color: var(--white);
}

.btn-danger:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-tone);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Upload Area */
.upload-area {
    border: 2px dashed var(--blue-tone);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.upload-area:hover {
    background: rgba(74, 144, 226, 0.1);
}

.upload-area.dragover {
    background: rgba(74, 144, 226, 0.2);
    border-color: var(--light-red);
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    body {
        font-size: 13px;
    }
    
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .org-name h1 {
        font-size: 13px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 12px;
    }
    
    .slider-container {
        height: 250px;
    }
    

    

    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .schedule-table {
        display: block;
        overflow-x: auto;
    }
    
    .card-container {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .navbar, .btn {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .container {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

/* Tambahan CSS untuk modul pengurusan */

/* Card Header with Actions */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.card-header h3 {
    margin: 0;
}

/* Status Badges */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: normal;
}

.badge-primary {
    background: var(--blue-tone);
    color: white;
}

.badge-success {
    background: #28a745;
    color: white;
}

.badge-warning {
    background: #ffc107;
    color: #000;
}

.badge-danger {
    background: #dc3545;
    color: white;
}

.badge-info {
    background: #17a2b8;
    color: white;
}

/* Animation for new items */
@keyframes highlight {
    0% { background: #fff3cd; }
    100% { background: transparent; }
}

.highlight-new {
    animation: highlight 3s;
}

/* Loading Spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--blue-tone);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal-less popup (using inline notification) */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-left: 4px solid var(--blue-tone);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 9999;
    animation: slideInRight 0.3s;
    max-width: 350px;
}

.notification.error {
    border-left-color: var(--light-red);
}

.notification.success {
    border-left-color: #28a745;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Print styles for reports */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-only {
        display: block !important;
    }
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    table {
        break-inside: auto;
    }
    
    tr {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Responsive tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Form wizard steps */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: white;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    font-weight: bold;
}

.step.active {
    border-color: var(--blue-tone);
    background: var(--blue-tone);
    color: white;
}

.step.completed {
    border-color: #28a745;
    background: #28a745;
    color: white;
}

/* Data list for autocomplete */
datalist {
    display: none;
}

/* Calendar view for schedule */
.calendar-view {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 20px;
}

.calendar-day {
    border: 1px solid #ddd;
    min-height: 100px;
    padding: 5px;
}

.calendar-day-header {
    background: #f0f0f0;
    padding: 5px;
    margin: -5px -5px 5px -5px;
    font-weight: bold;
    text-align: center;
}

.calendar-event {
    background: var(--light-red);
    color: white;
    padding: 2px 4px;
    margin: 2px 0;
    border-radius: 2px;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-event:hover {
    transform: scale(1.02);
    background: var(--blue-tone);
}

/* Responsive calendar */
@media screen and (max-width: 768px) {
    .calendar-view {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* css/style.css - Tambahan untuk footer dan rekabentuk profesional */

/* ========== FOOTER STYLES - BUSINESS EXECUTIVE STYLE ========== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2634 100%);
    color: #ffffff;
    padding: 10px 0 20px;
    margin-top: 60px;
    position: relative;
    font-family: 'Arial', sans-serif;
    border-top: 5px solid var(--light-red);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-red), var(--blue-tone), var(--light-red));
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2px;
    margin-bottom: 1px;
    position: relative;
    z-index: 2;
}

.footer-section {
    padding: 0 20px;
}





.footer-section p {
    margin-bottom: 5px;
    font-size: 8px;
    line-height: 1.0;
    color: #b4b4b4;
    display: flex;
    align-items: center;
    gap: 1px;
}


.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}


/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}



.footer-bottom p:first-child {
    color: #b4b4b4;
    font-weight: 100;
    letter-spacing: 1px;
}

.footer-bottom p:last-child {
    font-size: 10px;
    color: #FFFFFF;
}

/* ========== BUSINESS EXECUTIVE STYLE ENHANCEMENTS ========== */

/* Card refinements */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-red), var(--blue-tone));
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card:hover::after {
    opacity: 1;
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    border-bottom: 2px solid var(--light-red);
    position: relative;
}

.card-header h3 {
    font-size: 15px;
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 25px;
}

/* Table refinements */
.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.schedule-table thead tr {
    background: linear-gradient(135deg, var(--blue-tone), #2c3e50);
}

.schedule-table th {
    padding: 15px 12px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.schedule-table td {
    padding: 12px;
    border-bottom: 1px solid #edf2f7;
    font-size: 13px;
    color: #4a5568;
}

.schedule-table tbody tr {
    transition: var(--transition);
    cursor: pointer;
}

.schedule-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.05), rgba(255, 107, 107, 0.05));
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

/* Button refinements */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-tone), #2c3e50);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c3e50, var(--blue-tone));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, var(--light-red), #c0392b);
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c0392b, var(--light-red));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Form refinements */
.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    border-color: var(--blue-tone);
    background: white;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Alert refinements */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: none;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

/* Navigation refinements */
.navbar {
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px;
}

.nav-menu li a {
    border-radius: 40px;
    margin: 0 2px;
    font-weight: 500;
}

.nav-menu li a i {
    margin-right: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.nav-menu li a:hover i {
    transform: scale(1.2);
    color: var(--light-red);
}

/* Clock refinements - LENGKAP */
.clock {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.25) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    animation: clockPulse 3s infinite ease-in-out;
}

.clock::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: clockGlow 5s infinite linear;
    z-index: 0;
}

.clock i {
    margin-right: 10px;
    color: var(--light-red);
    font-size: 18px;
    position: relative;
    z-index: 1;
    animation: rotate 10s infinite linear;
}

.clock:hover {
    transform: scale(1.05) translateY(-3px);
    background: linear-gradient(135deg, rgba(255,107,107,0.3) 0%, rgba(74,144,226,0.3) 100%);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.5);
}

.clock:hover i {
    animation: bounce 0.8s ease infinite;
    color: var(--blue-tone);
}

/* Animations for clock */
@keyframes clockPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

@keyframes clockGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Clock display */
.clock #digital-clock {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease;
}

.clock #digital-clock small {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 3px;
    display: block;
    font-weight: normal;
}

/* Responsive clock */
@media screen and (max-width: 768px) {
    .clock {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .clock i {
        font-size: 14px;
        margin-right: 5px;
    }
    
    .clock #digital-clock small {
        font-size: 9px;
    }
}

/* Clock variations for different pages */
.login-page .clock {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.2);
}

.admin-page .clock {
    border-left: 3px solid var(--light-red);
}

/* Weather/clock combo (optional) */
.clock-extended {
    display: flex;
    align-items: center;
    gap: 15px;
}

.clock-extended .weather-info {
    font-size: 13px;
    padding: 5px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.clock-extended .weather-info i {
    color: #ffd700;
}

/* Pulse effect for seconds */
.clock .seconds {
    display: inline-block;
    min-width: 25px;
    animation: secondsPulse 1s step-end infinite;
}

@keyframes secondsPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Date display enhancement */
.clock .date-display {
    font-size: 11px;
    background: rgba(0,0,0,0.2);
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 3px;
    display: inline-block;
}

/* Clock tooltip */
.clock-tooltip {
    position: relative;
}

.clock-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    margin-bottom: 5px;
}

.clock-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0,0,0,0.8) transparent transparent transparent;
    margin-bottom: -5px;
}
	
	


