/* Rick and Morty Theme - Black and Green */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

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

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #001a00 100%);
    color: #00ff41;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header and Controls */
h1 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin: 20px 0;
    text-shadow: 0 0 20px #00ff41, 0 0 40px #00ff41;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}





.controls-section {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: 1400px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.controls-row {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    align-items: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    margin-bottom: 0;
}

.search-favorites-row {
    display: none;
}

.control-group {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    gap: 8px;
    min-width: 150px;
    flex: 1;
    max-width: 200px;
}

.action-btn {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    border: none;
    color: #000000;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 65, 0.4);
    background: linear-gradient(45deg, #00cc33, #00ff41);
}

.action-btn:active {
    transform: translateY(0);
}

input[type="date"] {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 10px;
    color: #00ff41;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
    min-width: 150px;
}

input[type="date"]:focus {
    outline: none;
    border-color: #00cc33;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) hue-rotate(120deg);
    cursor: pointer;
}

.search-group {
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    flex: 1;
}

.favorites-group {
    min-width: 250px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.control-group label {
    font-size: 0.9rem;
    color: #00cc33;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    height: 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

#searchInput, #filterType, #filterValue, #sortSelect {
    padding: 12px 16px;
    font-size: 13px;
    background: #000;
    border: 2px solid #00ff41;
    border-radius: 10px;
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    height: 45px;
    box-sizing: border-box;
    width: 100%;
}

#searchInput {
    min-width: 100%;
    text-align: left;
    height: 45px;
    box-sizing: border-box;
    width: 100%;
}

#searchInput:focus, #filterType:focus, #filterValue:focus, #sortSelect:focus {
    outline: none;
    border-color: #00cc33;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
    background: #001a00;
    transform: translateY(-2px);
}

#searchInput::placeholder {
    color: #00cc33;
    opacity: 0.7;
}



/* Favorites Toggle */
#favoritesToggleContainer {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    gap: 12px;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    padding: 12px 25px;
    background: rgba(0, 26, 0, 0.3);
    border-radius: 10px;
    border: 2px solid #00ff41;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    min-height: 45px;
    min-width: 220px;
    box-sizing: border-box;
    height: 45px;
    width: 100%;
    margin-top: 0;
}

#favoritesToggleContainer:hover {
    background: rgba(0, 26, 0, 0.5);
    border-color: #00cc33;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

#favoritesToggleContainer span {
    color: #00cc33;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#favoritesToggle {
    width: 20px;
    height: 20px;
    accent-color: #00ff41;
    cursor: pointer;
    flex-shrink: 0;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 15px 30px;
    background: linear-gradient(145deg, #000000, #001a00);
    border: 2px solid #00ff41;
    color: #00ff41;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    min-width: 140px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.pagination-btn:hover::before {
    left: 100%;
}

.pagination-btn:hover {
    background: linear-gradient(145deg, #00ff41, #00cc33);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
    transform: translateY(-3px) scale(1.05);
    border-color: #00cc33;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #333;
    color: #333;
    background: #000;
    transform: none;
    box-shadow: none;
}

.pagination-btn:disabled:hover {
    background: #000;
    color: #333;
    transform: none;
    box-shadow: none;
}

.pagination-info {
    color: #00cc33;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    min-width: 200px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 25px;
    border: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom pagination styling */
.bottom-pagination {
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

/* Characters Container */
#characters-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    position: relative;
}

.character-card {
    background: linear-gradient(145deg, #000000, #001a00);
    border: 2px solid #00ff41;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.2);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.character-card:hover::before {
    left: 100%;
}

.character-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 65, 0.6);
    border-color: #00cc33;
    z-index: 10;
}

.character-card:hover .detail-value {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
    word-wrap: break-word;
}

/* Enhanced Card Header */
.card-header {
    padding: 20px 20px 15px;
    position: relative;
}

.character-name {
    color: #00ff41;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid currentColor;
}

.status-badge.status-alive {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

.status-badge.status-dead {
    color: #ff0040;
    background: rgba(255, 0, 64, 0.1);
}

.status-badge.status-unknown {
    color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
}

/* Enhanced Image Container */
.card-image-container {
    position: relative;
    margin: 0 20px;
    border-radius: 15px;
    overflow: hidden;
}

.character-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #00ff41;
    transition: all 0.3s ease;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.character-card:hover .image-overlay {
    opacity: 1;
}

.character-card:hover img {
    border-color: #00cc33;
    transform: scale(1.05);
}

/* Enhanced Card Details */
.card-details {
    padding: 15px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #00cc33;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #00ff41;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.detail-value:hover {
    color: #00ffcc;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.6);
}

.favorite-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    position: relative;
}

.favorite-btn:hover {
    background: #00ff41;
    color: #000;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.7);
    transform: scale(1.15);
}



/* Enhanced Loading States */
.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: #00ff41;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 20px;
}

.loading-text {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 255, 65, 0.2);
    border-top: 4px solid #00ff41;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    margin: 20px auto;
}

/* No Results State */
.no-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: #00cc33;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 20px;
    text-align: center;
}

.no-results-icon {
    font-size: 4rem;
    opacity: 0.7;
}

.no-results-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.no-results-suggestion {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

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

/* Scrollbar Styling */
/* Removed all scrollbar styling - no scrollbars allowed */

/* Hide all scrollbars completely */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Character Details Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #000000, #001a00);
    border: 3px solid #00ff41;
    border-radius: 20px;
    margin: 0.5% auto;
    padding: 0;
    width: 95%;
    max-width: 700px;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(90deg, #00ff41, #00cc33);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #00ff41;
}

.modal-header h2 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.modal-close-btn {
    background: none;
    border: 2px solid #000000;
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close-btn:hover {
    background: #000000;
    color: #00ff41;
    transform: scale(1.1);
}

.modal-body {
    padding: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.modal-image-section {
    position: relative;
    flex-shrink: 0;
}

.modal-image-section img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 2px solid #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}



.modal-details-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.modal-detail-label {
    color: #00cc33;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-detail-value {
    color: #00ff41;
    font-weight: 500;
    font-size: 1rem;
    text-align: right;
    max-width: 70%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.modal-footer {
    padding: 8px 20px;
    border-top: 2px solid rgba(0, 255, 65, 0.2);
    text-align: center;
}

.modal-favorite-btn {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    border: none;
    color: #000000;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.modal-favorite-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 65, 0.4);
    background: linear-gradient(45deg, #00cc33, #00ff41);
}

.modal-favorite-btn span {
    font-size: 0.85rem;
}

.modal-favorite-btn:active {
    transform: translateY(0);
}

.modal-episodes-section {
    padding: 6px 15px;
    border-top: 2px solid rgba(0, 255, 65, 0.2);
}

.modal-episodes-section h3 {
    color: #00ff41;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.episodes-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    max-height: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 12px 12px 12px;
    background: rgba(0, 255, 65, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    align-items: center;
    min-height: 40px;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #00ff41 rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
}

/* Custom horizontal scrollbar for episodes list */
.episodes-list::-webkit-scrollbar {
    height: 10px;
}

.episodes-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 65, 0.4);
}

.episodes-list::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00ff41, #00cc33);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

.episodes-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #00cc33, #00ff41);
    box-shadow: 0 0 12px rgba(0, 255, 65, 0.8);
}

.episode-item {
    background: rgba(0, 255, 65, 0.12);
    border: 1px solid rgba(0, 255, 65, 0.5);
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 28px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 255, 65, 0.2);
    position: relative;
    overflow: hidden;
}

.episode-item:hover {
    background: rgba(0, 255, 65, 0.25);
    border-color: #00ff41;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 255, 65, 0.4);
}

.episode-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.episode-item:hover::before {
    left: 100%;
}

.episode-item span {
    color: #00ff41;
    font-size: 0.75rem;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.episode-item.no-episodes {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #cccccc;
    font-style: italic;
}



/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .controls-section {
        margin: 15px;
        padding: 20px;
    }
    
    .controls-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .search-favorites-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .control-group {
        min-width: 250px;
    }
    
    .search-group {
        max-width: 250px;
    }
    
    #searchInput, #filterType, #filterValue, #sortSelect {
        min-width: 250px;
    }
    
    #characters-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        padding: 20px;
    }
    
    .pagination-controls {
        gap: 15px;
    }
    
    .pagination-btn {
        padding: 10px 20px;
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    /* Modal responsive design */
    .modal-content {
        margin: 3% auto;
        width: 95%;
        max-width: none;
    }
    
    .modal-body {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .modal-image-section img {
        width: 140px;
        height: 140px;
    }
    
    .modal-detail-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        width: 100%;
    }
    
    .modal-detail-value {
        text-align: center;
        max-width: 100%;
        font-size: 0.85rem;
    }
    
    .episodes-list {
        max-height: 35px;
        gap: 5px;
    }
    
    .episode-item {
        min-width: 60px;
        height: 25px;
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .modal-favorite-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .modal-favorite-btn span {
        font-size: 0.8rem;
    }
}

/* Rick and Morty Theme Elements */
/* Removed the lightning bolt icon that was next to character names */

/* Status Indicators */
.status-alive {
    color: #00ff41 !important;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.6);
    font-weight: 700;
}

.status-dead {
    color: #ff0040 !important;
    text-shadow: 0 0 12px rgba(255, 0, 64, 0.6);
    font-weight: 700;
}

.status-unknown {
    color: #ffaa00 !important;
    text-shadow: 0 0 12px rgba(255, 170, 0, 0.6);
    font-weight: 700;
}
