* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background: linear-gradient(135deg, #14181c 0%, #1a1f24 100%);
    min-height: 100vh;
    padding: 20px 0;
}

/* Container*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.project-header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #1a1f24 0%, #242b33 100%);
    margin-bottom: 30px;
    border-radius: 0 0 15px 15px;
}

.project-header h1 {
    font-size: 2.5rem;
    color: #ff4655;
    margin-bottom: 10px;
}

.project-header p {
    font-size: 1.2rem;
    color: #9aa0a6;
}

/* Filter Section */
.filter-section {
    background: #1a1f24;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #2c3e50;
}

.filter-section label {
    display: block;
    margin-bottom: 10px;
    color: #e5e5e5;
    font-weight: 600;
    font-size: 1.1rem;
}

#agentFilter {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    background: #242b33;
    color: #e5e5e5;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    font-size: 1rem;
}

#agentFilter option {
    background: #1a1f24;
}

.filter-section:hover {
    transform: translateY(-3px);
}

/* Form Section */
.form-section {
    background: #1a1f24;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #2c3e50;
    transition: transform 0.3s ease;
}

.form-section:hover {
    transform: translateY(-3px);
}

.form-section h2 {
    color: #e5e5e5;
    margin-bottom: 25px;
    font-size: 1.8rem;
    border-bottom: 3px solid #ff4655;
    padding-bottom: 10px;
    display: inline-block;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 600;
}

select, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    background: #242b33;
    color: #e5e5e5;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

select:focus, textarea:focus {
    outline: none;
    border-color: #ff4655
}

textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Consolas', monospace;
}

/* Buttons */
button {
    background: linear-gradient(135deg, #ff4655 0%, #e63946 100%);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

#clearAll {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1rem;
}

/* Reports Section */
.reports-section {
    background: #1a1f24;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2c3e50;
}

.reports-section h2 {
    color: #e5e5e5;
    margin-bottom: 25px;
    font-size: 1.8rem;
    border-bottom: 3px solid #ff4655;
    padding-bottom: 10px;
}

.reports-section:hover {
    transform: translateY(-3px);
}

#reports {
    margin-bottom: 20px;
}

.report {
    background: #242b33;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.agent-badge {
    background: linear-gradient(135deg, #ff4655, #e63946);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
}

.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.date {
    color: #9aa0a6;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.desc {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 15px;
}

.actions {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
}
.h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.button {
    background: linear-gradient(135deg, #ff4655 0%, #e63946 100%);
    color: white;
    padding: 5px 65px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Home page */
.main-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    gap: 30px;
}

#content {
    flex: 2;
    min-width: 600px;
}

#home {
    width: 100%;
    flex: none;
    background: #1a1f24;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#home h1 {
    color: #ff4655;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

#home p {
    font-size: 1.2rem;
    color: #9aa0a6;
}

aside {
    flex: 1;
    min-width: 300px;
}

.article-content {
    background: #1a1f24;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #2c3e50;
}

.article-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.article-content h2 {
    color: #e5e5e5;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 3px solid #ff4655;
    padding-bottom: 10px;
    display: inline-block;
}

.article-content p {
    text-align: justify;
    color: #b0b0b0;
    line-height: 1.8;
}

.article-content p span {
    display: block;
    font-weight: 700;
    color: #ff4655;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    padding: 2rem;
}

.slider-wrapper {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.slider {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}


.slider::-webkit-scrollbar {
    display: none;
}

.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity 250ms ease;
}

.slider-nav a:hover {
    opacity: 1;
}footer {
    text-align: center;
    padding: 1rem;
    background-color: #1a1f24;
    color: #9aa0a6;
    font-size: 0.9rem;
    border-top: 1px solid #2c3e50;

}

/* Empty state */
.empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #9aa0a6;
    font-style: italic;
    padding: 40px;
}


