.boss-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    border-bottom: 2px solid var(--gold-dim);
    margin-bottom: 10px;
    padding-bottom: 15px;
    width: 100%; 
}

.boss-title {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Times New Roman', serif;
    color: var(--gold-grace);
    text-shadow: 0 0 15px rgba(255, 202, 40, 0.4);
}

.inline-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    text-decoration: none;
    color: var(--gold-grace); 
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 8px 16px;
    transition: 0.3s all ease;
    
    border: 1px solid rgba(168, 138, 61, 0.3); 
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.nav-btn:hover {
    color: #fff;
    background: var(--gold-dim);
    border: 1px solid var(--gold-grace);
    box-shadow: 0 0 10px rgba(255, 202, 40, 0.3);
}

.elden-container {
    padding: 40px;
    background-image: radial-gradient(circle, #2a2a2a 0%, var(--er-black) 100%);
    min-height: 100vh;
    color: var(--er-text);
}

.boss-registry {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.boss-registry thead th {
    color: var(--gold-grace);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px;
    border-bottom: 1px solid var(--gold-dim);
}

.boss-row {
    background: rgba(40, 40, 40, 0.8);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.boss-row td {
    padding: 20px;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    color: var(--er-text);
}

.boss-row td:first-child { border-left: 3px solid var(--gold-dim); border-radius: 10px 0 0 10px; }
.boss-row td:last-child { border-right: 1px solid #444; border-radius: 0 10px 10px 0; }

.boss-row:hover {
    transform: scale(1.01);
    background: rgba(60, 60, 60, 0.9);
    box-shadow: 0 0 20px rgba(255, 202, 40, 0.2);
}
.boss-row td small {
    color: var(--gold-grace);
    font-size: 0.85rem;
}

.name-cell {
    font-size: 1.4rem;
    color: var(--gold-grace);
    font-weight: bold;
}

.lore-cell {
    font-style: italic;
    color: var(--er-lore);
    max-width: 400px;
}

.drop-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.pill {
    background: #444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid var(--gold-dim);
}

.location-tag {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.search-form {
    display: flex;
    align-items: center;
    margin-left: 10px;
    border: 1px solid var(--gold-dim);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 2px 5px;
}

.search-input {
    background: transparent;
    border: none;
    color: var(--gold-grace);
    padding: 5px 10px;
    outline: none;
    font-family: inherit;
    width: 150px;
    transition: width 0.3s ease;
}

.search-input:focus {
    width: 200px;
}

.search-input::placeholder {
    color: var(--gold-dim);
    opacity: 0.6;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    filter: sepia(1) saturate(5) hue-rotate(10deg);
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: scale(1.2);
}

.message {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.message.error {
  color: #ff4444;
  border-left: 2px solid #ff4444;
}
.message.success {
  color: var(--gold-grace);
}