 * {
    box-sizing: border-box;
}
 body {
        font-family: Arial, sans-serif;
        background: #f6f7fb;
    }

    .container {
        width: 700px;
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        margin-top: 100px;
        margin-left: 400px;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 28px;
        margin: 0;
    }

    .btn {
        padding: 10px 18px;
        border: none;
        border-radius: 30px;
        color: white;
        cursor: pointer;
        font-weight: bold;
        background: linear-gradient(90deg, #6a11cb, #2575fc);
        box-shadow: 0 6px 15px rgba(37,117,252,0.3);
    }

    label {
        display: block;
        margin: 20px 0 8px;
        font-weight: 600;
        color: #333;
    }

    input {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        border: 2px solid #dbe3ff;
        outline: none;
        font-size: 15px;
        transition: 0.3s;
        background: #fff;
    }

    input:focus {
        border-color: #2575fc;
        box-shadow: 0 0 10px rgba(37,117,252,0.2);
    }

    input:disabled {
        background: #f2f4f8;
        color: #777;
    }

    .personaldetail{
        width: 900px;
        height: 130px;
         padding: 15px 20px;
        margin-bottom: 30px;
        background: white;
        border-radius: 20px;
        box-shadow: 20px 20px 30px rgba(26, 84, 117, 0.1);
        margin-left: 340px;
        margin-top: 50px;
    }

    .name {
    font-size: 30px;
    font-weight: bold;
    color: #222;
    
}

.email {
    font-size: 14px;
    color: gray;
}


.profile-box {
    display: flex;
    gap: 10px;          /* arada boşluq */
    align-items: center;
    margin-left: 500px;
}
.badge {
    width: 200px;
    height: 30px;
    background: #ccf9e2;
    border-radius: 50px;
    font-weight: 600;
    color: #10a23c;
    text-align: center;
}

.joined {
    font-weight: 600;
    color: #120aa5;
    width: 200px;
    height: 30px;
    background: #d5eefc;
    border-radius: 50px;
    text-align: center;
}
















































































#threeDotDiv {
    cursor: pointer;
    font-size: 22px;
    padding: 5px 10px;
    display: inline-block;
    user-select: none;
    margin-left: 600px;
    margin-bottom: 40px;
}

.dropdown {
    position: absolute;
    background: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    border-radius: 10px;
    width: 160px;
    overflow: hidden;
    margin-top: 5px;
    margin-left: 600px;
    margin-bottom: 40px;
}

.dropdown .item {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

.dropdown .item:hover {
    background: #f2f2f2;
}

.hidden {
    display: none;
}