/* modules/prijshistorie/views/css/front.css */

.prijshistorie-module-container {
    font-family: 'Heebo', Arial, Helvetica, sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #f8f9fa;
    color: #222222;
    width: 100%;
    box-sizing: border-box;
}

.prijshistorie-module-container .card-body {
    padding: 20px;
}

.prijshistorie-module-container .card-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222222;
    border-bottom: 2px solid #fad505;
    padding-bottom: 15px;
}

/* Styling voor de grafiek sectie */
.prijshistorie-chart-section {
    position: relative;
    height: 300px;
    width: 100%;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

/* Styling voor de prijshistorie tabel */
.prijshistorie-table-section {
    margin-top: 20px;
}

.prijshistorie-table-section h6 {
    color: #222222;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.prijshistorie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
}

.prijshistorie-table thead th {
    background-color: #f2f2f2;
    color: #222222;
    padding: 12px 10px;
    text-align: left;
    border: 1px solid #e5e5e5;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
}

.prijshistorie-table tbody tr {
    background-color: #ffffff;
    color: #222222;
    transition: background-color 0.2s ease;
}

.prijshistorie-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.prijshistorie-table tbody tr:hover {
    background-color: #fffef0;
}

.prijshistorie-table tbody td {
    padding: 12px 10px;
    border: 1px solid #e5e5e5;
    vertical-align: middle;
    font-size: 0.9rem;
}

.prijshistorie-table tbody td a {
    color: #fad505;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.prijshistorie-table tbody td a:hover {
    color: #222222;
    text-decoration: underline;
}

/* Bekijken knop styling - gele knop met zwarte tekst */
.prijshistorie-bekijken-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fad505;
    color: #222222 !important;
    text-decoration: none !important;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.prijshistorie-bekijken-btn:hover {
    background-color: #222222;
    color: #fad505 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Meldingen */
.prijshistorie-module-container .alert {
    background-color: #ffffff;
    color: #222222;
    border-color: #e5e5e5;
    border-left: 4px solid #fad505;
    padding: 15px;
    border-radius: 5px;
}

.prijshistorie-module-container .alert-info {
    background-color: #f0f7ff;
    color: #222222;
    border-left-color: #fad505;
}