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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.btn-danger {
    background: #e74c3c;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-secondary {
    background: #95a5a6;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.alert {
    width:100%;
    padding: 0;
    text-align: center;
    margin-bottom: 8px;
    border-radius: 4px;
}

.alert-error {
    color: #c33;
}

.alert-success {
    color: #3c763d;
}
.auth-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.navigation {
    background: #2c3e50;
    padding: 15px 0;
    margin-bottom: 30px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.user-info {
    color: #ecf0f1;
}

.table-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #555;
}

tr:hover {
    background: #f8f9fa;
}

.actions {
    display: flex;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 4px 8px;
    background: #e9ecef;
    border-radius: 4px;
    font-size: 12px;
    margin: 2px;
}

.tag-admin {
    background: #f39c12;
    color: white;
}

.tag-curator {
    background: #3498db;
    color: white;
}

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

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close {
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.checkbox-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .table-container {
        padding: 10px;
    }

    th, td {
        padding: 8px;
        font-size: 14px;
    }

    .actions {
        flex-direction: column;
    }
}

















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

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(20, 26, 32);
    scale: 130%;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.input {
    background-color: #20262c;
    text-align: center;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
}
.input:disabled{
    opacity: 60%;
}
.input:focus {
    outline: none;
    border: 2px solid #248d82;
    box-shadow: 0 0 5px rgba(36, 141, 130, 0.5);
}

.btn {
    background-color: #248d82;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.1s ease 0s, color 0.1s ease 0s, box-shadow 0.1s ease 0s;
    border-radius: 8px;
    outline: none;
    position: relative;
    font-family: Inter, Arial;
    color: rgb(255, 255, 255);
    height: 40px;
    min-width: 56px;
    padding: 14px 32px;
    font-size: 16px;
    line-height: 132%;
    font-weight: 500;
    width: 100%;
    border: none;
}

.btn.active {
    background-color: #248d82;
}

.disabled {
    opacity: 50%;
    cursor: not-allowed;
}

.error {
    margin-top: 5px;
    color: #a00;
    transition: all 0.3s;
}

.input-container {
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 7px;
}

.button-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
}














