.wrap.freshenup_settings_form {
    background: white;
    padding: 30px;
}

    .prompt-content {
    margin: 20px 0;
    line-height: 3;
}

.prompt-content br {
    display: block;
    margin: 10px 0;
    content: "";
}

.editable {
    padding: 2px 4px;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color:#fff;
}
    .modal {
        display: none;
        position: fixed;
        z-index: 99999999999999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.4);
    }
    .modal-content {
        background-color: #fefefe;
        margin: 25px auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 800px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: auto;
        max-height: 80%;
    }
    #modal-input-container label {
    margin-right: 20px;
    line-height: 2.5;
    white-space: nowrap;
    display:inline-block;
    }
    
    button#save-modal {
    margin-top: 20px;
}

.prompt-item {
    border: 2px solid #efefef;
  margin-bottom: 30px;
  background: #f6f7f7;
  border-radius: 7px;
  padding: 20px;
  max-width: 800px;
}

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        margin-top:-15px;
    }
    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    
    button.remove-prompt {
    margin-bottom: 30px !important;
    color: red !important;
    border-color: red !important;
}

.freshenup-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.freshenup-loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: freshenup-spin 1s linear infinite;
}

@keyframes freshenup-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.freshenup_remove_button_container {
  display: flex;
  justify-content: flex-end;
}

.freshenup-prompt-tips {
    background: #f8f9fc;
    border-left: 4px solid #00a0d2;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 14px;
}

.freshenup-prompt-tips strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.freshenup-prompt-tips ul.freshenup-tips {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}

.freshenup-prompt-tips ul.freshenup-tips li {
    margin-bottom: 8px;
    line-height: 1.5;
}