.radne-nedjelje-frontend {
    margin: 20px 0;
}

.radne-stores-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.radne-stores-table thead {
    background: #f8f9fa;
}

.radne-stores-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
}

.radne-stores-table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.radne-stores-table tbody tr:hover {
    background: #f8f9fa;
}

.radne-stores-table tbody tr:last-child td {
    border-bottom: none;
}

.store-logo {
    width: 60px;
    text-align: center;
}

.store-logo img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.store-logo .dashicons {
    font-size: 40px;
    color: #666;
}

.working-hours {
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.address {
    color: #666;
    line-height: 1.4;
}

/* Admin styles */
.radne-form-container {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.radne-stores-list {
    margin-top: 30px;
}

#logo_preview img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.toggle-status {
    min-width: 80px !important;
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.toggle-status.working {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.toggle-status.closed {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.delete-store {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    margin-left: 5px;
}

.delete-store:hover {
    background: #c82333;
    border-color: #bd2130;
}

.delete-store .dashicons {
    font-size: 14px;
    margin-right: 3px;
}

/* Responsive design */
@media (max-width: 768px) {
    .radne-stores-table {
        font-size: 14px;
    }
    
    .radne-stores-table th,
    .radne-stores-table td {
        padding: 8px 6px;
    }
    
    .store-logo {
        width: 50px;
    }
    
    .store-logo img {
        max-width: 40px;
        max-height: 40px;
    }
    
    .working-hours {
        font-size: 13px;
    }
    
    .address {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .radne-stores-table {
        font-size: 12px;
    }
    
    .radne-stores-table th,
    .radne-stores-table td {
        padding: 6px 4px;
    }
    
    .store-logo {
        width: 40px;
    }
    
    .store-logo img {
        max-width: 35px;
        max-height: 35px;
    }
}
