.admin-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background-color: white;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-header h1 {
    color: #333;
    margin: 0;
    font-size: 2.2rem;
    font-weight: 600;
}

.admin-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: 3rem;
}

.admin-actions button {
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.admin-actions .crear-btn {
    background-color: #28a745;
    color: white;
}

.admin-actions .btn-logout {
    background-color: #dc3545;
    color: white;
}

.admin-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.admin-actions button i {
    font-size: 1rem;
}

.admin-header h1 {
    color: #333;
    margin: 0;
    font-size: 2rem;
}

.btn-create {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.btn-create:hover {
    background-color: #218838;
}

.delete-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.delete-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.delete-section h3 {
    color: #555;
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.delete-all-container {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.btn-danger:hover {
    background-color: #c82333;
}

.workplace-list {
    display: grid;
    gap: 1rem;
}

.workplace-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.workplace-item:hover {
    background-color: #e9ecef;
}

.workplace-item span {
    font-size: 1rem;
    color: #495057;
}

.btn-delete {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.btn-delete:hover {
    background-color: #5a6268;
}