#submitBtn:disabled {
    background-color: #a0c4ff; /* soluk renk */
    cursor: not-allowed;
    opacity: 0.6; /* ekstra görünürlük için */
    pointer-events: none; /* tıklanamaz yapar */
}

#addPlaceBtn[disabled] {
    pointer-events: none; /* tamamen tıklanamaz */
    opacity: 0.6;         /* soluk görünüm */
}

/* Sociaphy Primary Button */
.btn-soci {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #2a036b;
    border: 1px solid #2a036b;
    color: #fff;

    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;

    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;

    transition: all 0.2s ease;
}

/* Hover & Focus */
.btn-soci:hover,
.btn-soci:focus {
    background-color: #2a036bc9;
    border-color: #230259;
    color: #fff!important;
}

/* Active */
.btn-soci:active {
    background-color: #2a036bc9;
    border-color: #1d024b;
    color: white;
}

/* Full width (Bootstrap w-100 alternatifi) */
.btn-soci-block {
    width: 100%;
}

/* Small size */
.btn-soci-sm {
    padding: 6px 14px;
    font-size: 13px;
}

/* Disabled */
.btn-soci:disabled,
.btn-soci.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.common-button-groups .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 8px 12px;
    font-size: 14px;
    border-radius: 8px;
}

.common-button-groups .btn i {
    font-size: 16px;
    line-height: 1;
}

/* Mobil */
@media (max-width: 576px) {
    .common-button-groups {
        flex-direction: column;
        align-items: stretch;
    }

    .common-button-groups .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Sociaphy Negative Button */
.btn-soci-negative {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #6b6b6b;
    border: 1px solid #6b6b6b;
    color: #fff;

    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;

    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;

    transition: all 0.2s ease;
}

/* Hover & Focus */
.btn-soci-negative:hover,
.btn-soci-negative:focus {
    background-color: #5f5f5f;
    border-color: #585858;
    color: #fff !important;
}

/* Active */
.btn-soci-negative:active {
    background-color: #555555;
    border-color: #4f4f4f;
    color: #fff;
}

/* Disabled */
.btn-soci-negative:disabled,
.btn-soci-negative.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


.input-soci {
    width: 100%;
    border: 1px solid #d1d5db; /* açık gri */
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    background-color: #fff;

    /* Bootstrap etkilerini bastır */
    box-shadow: none;
    outline: none;

    transition: border-color .15s ease;
}


.input-soci:focus {
    border-color: #000; /* siyah */
    box-shadow: none;
    outline: none;
}

.input-soci:disabled,
.input-soci[readonly] {
    background-color: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}


