@charset "utf-8";
/* CSS Document */

/* Default styles for all screen sizes */
@keyframes promptFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#saveBtn {
  position: relative;
}

/* Tooltip message — hidden by default */
.hover-login-msg {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.25s ease;
  z-index: 10;
}

.custom-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.custom-prompt-input:focus {
    border-color: #F1F7F6;
}

.custom-prompt-btn--cancel:hover {
    background: #900202;
}

.custom-prompt-btn--ok:hover {
    background: #102E8C;
}

.save-toast--show {
    opacity: 1;
}

.save-toast--success {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.save-toast--info {
    background: black;
    color: white;
}

.save-toast--error {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

/* PORTRAIT MOBILE (up to 1099px wide) */
@media only screen and (orientation: portrait) and (max-width: 1099px) {

.custom-prompt-dialog {
    position: fixed;
	top: 20vh;
    background: #0B0B0B;
    border: 1px solid #F1F7F6;
    color: #F1F7F6;
    border-radius: 12px;
    padding: 24px;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: promptFadeIn 0.2s ease-out;
}

.custom-prompt-message {
    font-family: "Imprima", sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: #F1F7F6;
    margin-bottom: 16px;
    text-align: center;
}

.custom-prompt-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #F1F7F6;
    border-radius: 8px;
    font-family: "Imprima", sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
    background: #0B0B0B;
    color: #F1F7F6;
}

.custom-prompt-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.custom-prompt-btn {
    background: #0B0B0B;
    border: 1px solid #F1F7F6;
    color: #F1F7F6;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Imprima", sans-serif;
}

.custom-prompt-btn--cancel {
    background: black;
    color: #F1F7F6;
}

.custom-prompt-btn--ok {
    background: black;
    color: #F1F7F6;
}

.save-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: "Imprima", sans-serif;
}

}

/* LANDSCAPE MOBILE/TABLET (480px to 1099px wide) */
@media only screen and (min-width: 480px) and (orientation: landscape) and (max-width: 1099px) {

.custom-prompt-dialog {
    position: fixed;
    bottom: 2vh;
    background: #0B0B0B;
    border: none;
    color: #F1F7F6;
    border-radius: 12px;
    padding: 2px 10px;
    min-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: promptFadeIn 0.2s ease-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.custom-prompt-message {
    font-family: "Imprima", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #F1F7F6;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
}

.custom-prompt-input {
    width: 35vw;
    flex: 1;
    padding: 5px;
    border: 1px solid #F1F7F6;
    border-radius: 8px;
    font-family: "Imprima", sans-serif;
    font-size: 18px;
    margin-bottom: 0;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
    background: #0B0B0B;
    color: #F1F7F6;
}

.custom-prompt-buttons {
	height: auto;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.custom-prompt-btn {
    background: #0B0B0B;
    border: 1px solid #F1F7F6;
    color: #F1F7F6;
    padding: 5px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Imprima", sans-serif;
}

.custom-prompt-btn--cancel {
    background: black;
    color: #F1F7F6;
}

.custom-prompt-btn--ok {
    background: black;
    color: #F1F7F6;
}

.save-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: "Imprima", sans-serif;
}

}

/* DESKTOP (1100px and wider) */
@media only screen and (min-width: 1100px) {

.custom-prompt-dialog {
    background: #0B0B0B;
    border: 1px solid #F1F7F6;
    color: #F1F7F6;
    border-radius: 12px;
    padding: 30px;
    min-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: promptFadeIn 0.2s ease-out;
}

.custom-prompt-message {
    font-family: "Imprima", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #F1F7F6;
    margin-bottom: 20px;
    text-align: center;
}

.custom-prompt-input {
    width: 100%;
    padding: 14px;
    border: 2px solid #F1F7F6;
    border-radius: 8px;
    font-family: "Imprima", sans-serif;
    font-size: 20px;
    margin-bottom: 24px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
    background: #0B0B0B;
    color: #F1F7F6;
}

.custom-prompt-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.custom-prompt-btn {
    background: #0B0B0B;
    border: 1px solid #F1F7F6;
    color: #F1F7F6;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Imprima", sans-serif;
}

.custom-prompt-btn--cancel {
    background: black;
    color: #F1F7F6;
}

.custom-prompt-btn--ok {
    background: black;
    color: #F1F7F6;
}

.save-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: "Imprima", sans-serif;
}

}