/*************************************************************
** @filename main.core.css => hide-number-arrows.css *********
*************************************************************/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]
{
    -moz-appearance: textfield;
}

.swal-custom
{
    width: 1200px !important;
}

/*************************************************************
** @filename main.core.css => calendar.css *********
*************************************************************/
.copy-day-modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.25);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.25s ease-out;
}

/* --- MODAL CARD --- */
.copy-day-content {
    width: 380px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.20);
    animation: scaleIn 0.25s ease-out;
    position: relative;
}

/* Başlık */
.copy-title {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-title i {
    font-size: 22px;
    color: #C77457;
}

/* Select kutuları */
.copy-day-content select {
    border-radius: 10px !important;
    border: 1px solid #d7d7d7;
    height: 42px;
}

/* Buton satırı */
.copy-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
}

.btn-cancel {
    background: #f1f1f1;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 500;
}

.btn-copy {
    background: linear-gradient(135deg, #C77457);
    border: none;
    padding: 8px 18px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/*************************************************************
** @filename main.core.css => form_img.css *********
*************************************************************/
.form-img
{
    position: relative;
    display: flex;
    height: 100% !important;
    overflow: hidden;
    background-color: rgb(210 201 255 / 7%);
    margin-bottom: 20px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.form-img input
{
    position: absolute;
    left: -9999px;
    opacity: 0;
}
.form-img label
{
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
    letter-spacing: 0.4px;
    color: #1e2171;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.form-img label:hover
{
    color: #481515;
}

.form-img img
{
    /*
    position: absolute;
    z-index: 1;
    top: -100px;
    right: -100px;
    bottom: -100px;
    left: -100px;
    */
    margin: auto;
}

/*************************************************************
** @filename main.core.css => calendar.css *********
*************************************************************/
.calendar-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.calendar-container table.sc {
    transform-origin: top left;
    transform: scale(0.85); /* 🔹 oranı değiştirerek sığdır: 0.7 - 1 arası */
    width: 117.6%; /* scale oranına göre genişliği dengele (1 / 0.85) */
}

/*.calendar-container { width: 100%; height: auto; }*/
.sc-header { margin: 0 0 10px 0; }
.sc-toolbar { display: flex; align-items: center; gap: 8px; }
.sc-btn { padding: 6px 10px; border: 1px solid #ddd; background: #fff; border-radius: 6px; cursor: pointer; }
.sc-title { margin-left: auto; font-weight: 600; }
/*table.sc { width: 100%; border-collapse: collapse; table-layout: fixed; }*/
.sc th, .sc td { border: 1px solid #e5e7eb; }
.sc thead th { background: #f8f9fa; padding: 8px 6px; text-align: center; }
.sc .sc-time-col { width: 64px; }
.sc .sc-time { width: 64px; text-align: center; font-size: 12px; color: #555; }
.sc tbody tr { height: 56px; }
.sc .sc-cell { padding: 4px 6px; vertical-align: top; }
.sc .sc-day { font-weight: 600; }
.sc .sc-date { font-size: 12px; color: #777; }
.sc .sc-event { color: #fff; background: #28a745; cursor: pointer; border: 1px solid #28a745; border-radius: 6px; padding: 6px 8px; margin: 4px 0; font-size: 12px; line-height: 1.2; }
