.gs-section {
    margin-bottom: 30px;
}
.gs-section h3 {
    margin-bottom: 15px;
}
.gs-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}
.gs-form input {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.gs-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.gs-form .gs-btn {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 14px;
    background: #333;
    color: #fff;
    cursor: pointer;
    text-align: center;
}
.gs-form .gs-btn:hover {
    background: #555;
}

.gs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
.gs-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    width: 95%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.gs-popup-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.gs-popup .gs-close-text {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 14px;
}
.gs-popup .gs-close-text:hover {
    background: #555;
}
.gs-popup-body {
    max-height: 70vh;
    overflow-y: auto;
}

/* Stilizacija tabela */
.gs-popup table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.gs-popup table th,
.gs-popup table td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: left;
}
.gs-popup table th {
    background-color: #333;
    color: #fff;
}
.gs-popup table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.gs-popup table tr:hover {
    background-color: #f1f1f1;
}

/* Responsive */
@media (max-width: 600px) {
    .gs-form {
        width: 100%;
    }
    .gs-btn-row {
        flex-direction: column;
    }
    .gs-form .gs-btn {
        width: 100%;
    }
}
