﻿<h3>Per<style>
    .profile-container {
        max-width: 800px;
        margin: 2rem auto;
        padding: 2rem;
        background: #1a1a1a;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        color: #ffffff;
    }

    .form-section {
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: #2d2d2d;
        border-radius: 8px;
        border: 1px solid #3d3d3d;
    }

    .form-title {
        color: #3498db;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #3498db;
        padding-bottom: 0.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        display: block;
        margin-bottom: 0.5rem;
        color: #ecf0f1;
        font-weight: 500;
    }

    .form-control-custom {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #4a4a4a;
        border-radius: 6px;
        transition: all 0.3s ease;
        background: #333333;
        color: #ffffff;
    }

        .form-control-custom::placeholder {
            color: #95a5a6;
        }

        .form-control-custom:focus {
            border-color: #2980b9;
            background: #3d3d3d;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

    select.form-control-custom {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1em;
    }

    .btn-save {
        background: #3498db;
        color: white;
        padding: 0.8rem 2rem;
        border: none;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .btn-save:hover {
            background: #2980b9;
            transform: translateY(-1px);
        }

    .alert {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 6px;
        border: 1px solid transparent;
    }

    .alert-success {
        background-color: #155724;
        color: #d4edda;
        border-color: #0c3d1a;
    }

    .alert-error {
        background-color: #721c24;
        color: #f8d7da;
        border-color: #5a151b;
    }

    .validation-message {
        color: #e74c3c;
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
</style>