/* Same CSS as before, but with drl- prefix added to all classes */
.drl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.drl-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.drl-tagline {
    font-size: 1.2rem;
    color: #8fe3cf;
}

.drl-app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .drl-app-container {
        grid-template-columns: 1fr;
    }
}

.drl-form-section {
    background: #16213e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.drl-map-section {
    background: #16213e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.drl-section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e94560;
    border-bottom: 2px solid #0f3460;
    padding-bottom: 10px;
}

.drl-input-group {
    margin-bottom: 15px;
}

.drl-input-group label {
    display: block;
    margin-bottom: 5px;
    color: #8fe3cf;
}

.drl-input-group input,
.drl-input-group select,
.drl-input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #0f3460;
    border-radius: 5px;
    background-color: #1a1a2e;
    color: #e6e6e6;
}

.drl-input-group button {
    background: #e94560;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    transition: background 0.3s;
}

.drl-input-group button:hover {
    background: #ff577f;
}

.drl-media-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.drl-media-btn {
    flex: 1;
    background: #0f3460;
}

.drl-media-btn:hover {
    background: #1b5cb0;
}

#drl-map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
}

.drl-ranking-section {
    margin-top: 30px;
    background: #16213e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.drl-ranking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

@media (max-width: 600px) {
    .drl-ranking-container {
        grid-template-columns: 1fr;
    }
}

.drl-ranking-list {
    background: #1a1a2e;
    padding: 15px;
    border-radius: 8px;
}

.drl-ranking-item {
    padding: 10px;
    margin-bottom: 10px;
    background: #0f3460;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.drl-ranking-number {
    font-weight: bold;
    color: #e94560;
}

.drl-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.drl-modal-content {
    background-color: #16213e;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.drl-close-btn {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: #e94560;
}

.drl-entry-details h3 {
    color: #e94560;
    margin-bottom: 15px;
}

.drl-detail-item {
    margin-bottom: 10px;
}

.drl-detail-label {
    font-weight: bold;
    color: #8fe3cf;
}

.drl-articles-section {
    margin-top: 20px;
}

.drl-article-item {
    background: #1a1a2e;
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    border-left: 4px solid #e94560;
}

.drl-article-title {
    font-weight: bold;
    color: #e6e6e6;
}

.drl-article-link {
    color: #8fe3cf;
    text-decoration: none;
}

.drl-article-link:hover {
    text-decoration: underline;
}

.drl-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #8fe3cf;
    font-size: 0.9rem;
}

.drl-auth-message {
    background: #0f3460;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.drl-auth-message h3 {
    color: #e94560;
    margin-bottom: 15px;
}