﻿.panel-container {
    max-width: 450px;
    margin: 20px auto;
    padding: 20px 30px;
    background-color: #015c7d59;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    color: #e0f7fa;
    backdrop-filter: blur(10px);
}

.panel-title, .panel-subtitle {
    margin-bottom: 20px;
    color: #9bd5ff;
    text-align: center;
}

.profile-info {
    margin-bottom: 10px;
}

.profile-image-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile-image-big {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #80deea;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .info-row label {
        font-weight: 600;
        color: #b2d5f2;
    }

.panel-form .form-group {
    margin-bottom: 16px;
    
}

.panel-form input[type="text"],
.panel-form input[type="email"],
.panel-form input[type="password"],
.panel-form input[type="number"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background-color: #01537d;
    color: #fff;
    box-sizing: border-box;
}
 
.btn-big {
    width: 100%;
    padding: 13px 0;
    background-color: #3684b2;
    border: none;
    border-radius: 8px;
    color: #e0ecfc;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(53, 122, 189, 0.6);
}

    .btn-big:hover {
        background-color: #42a0ce;
        box-shadow: 0 6px 14px rgba(74, 144, 226, 0.8);
    }

.btn-medium {
    background-color: #0067a3;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-medium:hover {
        background-color: #007ac1;
    }

/* File input'u gizle */
.file-input {
    display: none;
}

