* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
    min-height: 100vh;
    padding: 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.app-container {
    padding: 20px;
}

.drop-area {
    border: 2px dashed #888;
    border-radius: 8px;
    padding: 30px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.drop-area:hover {
    background-color: #f0f0f0;
    border-color: #666;
}

.drop-area p {
    margin: 10px 0;
    font-size: 1rem;
    color: #555;
}

.file-input {
    display: none;
}

.btn {
    background: #555;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    display: inline-block;
    margin: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: #444;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: #4a5568;
}

.btn-secondary {
    background: #718096;
}

.btn-danger {
    background: #e53e3e;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.help-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.help-dropdown {
    flex: 1;
    min-width: 300px;
}

.dropdown-header {
    background: #4a5568;
    color: white;
    padding: 12px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 250;
}

.dropdown-content {
    background: #f9f9f9;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    padding: 15px;
    display: none;
}

.dropdown-content.active {
    display: block;
}

.dropdown-icon {
    transition: transform 0.3s;
}

.dropdown-header.active .dropdown-icon {
    transform: rotate(180deg);
}

.images-table-container {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: 100%;

}

.images-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.images-table th {
    background: #4a5568;
    color: white;
    padding: 12px 8px;
    text-align: left;
    font-weight: 500;
    font-size: 0.9rem;
}

.images-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
}

.images-table tr:hover {
    background-color: #f7fafc;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gps-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.gps-yes {
    background-color: #38a169;
}

.gps-no {
    background-color: #e53e3e;
}

.action-buttons {
    display: flex;
    gap: 5px;
}

.action-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: #4a5568;
    color: white;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border 0.3s;
}

input:focus, textarea:focus {
    border-color: #4a5568;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 85, 104, 0.2);
}

textarea {
    min-height: 80px;
    resize: vertical;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.map-container {
    height: 250px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid #cbd5e0;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

.map-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 1000;
}

.map-error p {
    margin-bottom: 15px;
    color: #666;
}

.coordinates-input {
    display: flex;
    gap: 10px;
}

.coordinates-input .form-group {
    flex: 1;
}

.search-box {
    display: flex;
    margin-bottom: 15px;
}

.search-box input {
    flex: 1;
    border-radius: 4px 0 0 4px;
}

.search-box button {
    border-radius: 0 4px 4px 0;
    border: 1px solid #4a5568;
    background: #4a5568;
    color: white;
    padding: 0 15px;
    cursor: pointer;
}

.location-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.location-buttons button {
    flex: 1;
}

.status {
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
    text-align: center;
    font-weight: 500;
    display: none;
}

.status.success {
    background-color: #f0fff4;
    color: #2d3748;
    border: 1px solid #9ae6b4;
}

.status.error {
    background-color: #fed7d7;
    color: #2d3748;
    border: 1px solid #feb2b2;
}

.status.warning {
    background-color: #fffaf0;
    color: #2d3748;
    border: 1px solid #faf089;
}

.upload-counter {
    text-align: center;
    margin: 10px 0;
    font-size: 0.9rem;
    color: #666;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    padding: 5px 0;
}

.faq-answer {
    padding: 10px 0;
    display: none;
}

.faq-answer.active {
    display: block;
}

.plus-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-question.active .plus-icon {
    transform: rotate(45deg);
}

ol, ul {
    padding-left: 20px;
    margin: 10px 0;
}

li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .container {
        border-radius: 6px;
    }
    
    .app-container {
        padding: 15px;
    }
    
    .drop-area {
        padding: 20px 10px;
    }
    
    .help-dropdown {
        min-width: 100%;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .coordinates-input {
        flex-direction: column;
        gap: 0;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons-vertical {
        flex-direction: column;
    }
}
 /*log bar*/
/* Grey logo bar at the top */
.logo-bar {
    background-color: #ffffff; /* light grey */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #ccc;
}

/* Logo image */
.logo {
    height: 40px;
    object-fit: contain;
}