/* GENEL YAPILAR */

.user-name {
    display: flex;
    align-items: center;
}

.ltrlVerified {
    margin-top: 5px;
}

.profile-card {
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-info {
    text-align: center;
    margin-top: 10px;
    flex: 1;
}

    .profile-info h1 {
        font-size: 30px;
        margin: 5px;
        color: #333;
        font-weight: bold;
    }

.profile-picture img,
.profile-picture-square img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #ffffff;
    margin-right: 10px;
}

.profile-picture img {
    border-radius: 50%;
}

.profile-picture-square img {
    border-radius: 7%;
}

/* BİLGİ SATIRLARI */

.info-item {
    font-size: 20px;
    color: #333;
    margin: 0;
    padding: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .info-item i {
        font-size: 16px;
        margin-right: 5px;
    }

/* FORM */

.text-center {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    margin-bottom: 10px;
}

.form-control,
.btn {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
}

.form-inline .form-group {
    display: block;
    margin-bottom: 10px;
}

    .form-inline .form-group label {
        display: block;
    }

/* ASP.NET ÖZEL BUTON */

.btn-asp {
    width: 100%;
    background-color: #1e272e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-asp:hover {
        background-color: #000000;
    }

/* TABLO STİLİ */

.profile-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    word-break: break-word;
}

    .profile-table td,
    .profile-table th {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        text-align: left;
        vertical-align: top;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .profile-table th {
        font-weight: bold;
        white-space: nowrap;
    }

    .profile-table i {
        margin-right: 2px;
    }

/* DOĞRULAMA İKONLARI */

.verified-icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
}

/* ALERT BİLDİRİMLERİ */

.alert {
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid transparent;
    border-radius: 7px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        font-weight: bold;
    }

    .alert > p,
    .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissible {
    padding-right: 10px;
}

    .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

/* Renkli alert tipleri */

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

/* TWITTER GÖNDERİSİ */

.twitter-tweet {
    display: inline-block;
    margin: 0 auto;
    max-width: 100%;
}

/* 🔽 MOBİL GÖRÜNÜM İÇİN MEDYA SORGUSU */

@media (max-width: 600px) {
    .profile-card {
        flex-direction: column;
        align-items: center;
    }

    .profile-table,
    .profile-table thead,
    .profile-table tbody,
    .profile-table th,
    .profile-table td,
    .profile-table tr {
        display: block;
        width: 100%;
    }

        .profile-table tr {
            margin-bottom: 15px;
            border-bottom: 1px solid #ccc;
        }

        .profile-table th {
            background: #f5f5f5;
            font-weight: bold;
        }

        .profile-table td {
            text-align: left;
            padding-left: 10px;
        }
}
