@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&display=swap');

body {
    font-family: 'Crimson Text', serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    background: linear-gradient(135deg, #1f1a0f 0%, #2c1810 100%);
}

#main-content {
    color: #ffd700;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(45, 37, 20, 0.9), rgba(20, 10, 25, 0.95));
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#drop-zone {
    width: 100%;
    max-width: 95%;
    height: 80%;
    border: 2px dashed #8b4513;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #d4af37;
    background: linear-gradient(rgba(52, 46, 26, 0.7), rgba(33, 33, 16, 0.7));
    transition: all 0.3s ease;
    cursor: pointer;
}

#notes {
    width: 90%;
    padding: 10px;
    display: flex;
}

#drop-zone.dragging {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.info {
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #8b4513;
    border-radius: 5px;
    background: linear-gradient(45deg, #2c1810 0%, #1f1a0f 100%);
    color: #ffd700;
    transition: all 0.3s ease;
    width: 90%;
}

#side-panel {
    width: 430px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: linear-gradient(rgba(54, 50, 26, 0.95), rgba(90, 75, 44, 0.95)), url('logo.svg') no-repeat center bottom;
    background-size: 350px;
    background-blend-mode: overlay;
    border-left: 2px solid #8b4513;
}

.tracker-form input, .tracker-form button {
    font-family: 'Crimson Text', serif;
    padding: 8px;
    font-size: 14px;
    background: linear-gradient(45deg, #2c1810, #1a0f1f);
    border: 1px solid #8b4513;
    color: #ffd700;
    border-radius: 4px;
}

.tracker-form button {
    background: linear-gradient(45deg, #8b4513, #654321);
    color: #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tracker-form button:hover {
    background: linear-gradient(45deg, #654321, #8b4513);
    transform: translateY(-2px);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
    margin-top: 10px;
}

table th, table td {
    text-align: left;
    padding: 8px;
    border: 1px solid #8b4513;
}

table th {
    background: linear-gradient(45deg, #4a2810, #2c1810);
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

table tr {
    background: linear-gradient(45deg, #2c1810, #1a0f1f);
    transition: all 0.3s ease;
}

.highlighted {
    background: linear-gradient(45deg, #c17917, #8b4513);
    color: #fff;
}

.critical {
    background: linear-gradient(45deg, #8b0000, #580000);
    color: #fff;
}

.dead {
    background: linear-gradient(45deg, #000000, #1a0f1f);
    color: #666;
}

h2 {
    color: #666;
}

h1, h2 {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

tr {
    color: #ffffff;
}