/* Container for the notification */
.wk-oosn-notificationcontainer {
    margin: 25px 0;
    font-family: 'Open Sans', sans-serif;
}

/* The Card Background */
.wk-oosn-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft depth */
    border: 1px solid #eee;
    max-width: 500px;
}

.wk-oosn-title {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
}

/* The Input Row - Keeping them together */
.wk-oosn-input-row {
    display: flex !important;
    align-items: stretch;
    height: 45px;
}

/* Professional Input Field */
.wk-oosn-input-text {
    flex: 1;
    border: 2px solid #ddd !important;
    border-right: none !important;
    border-radius: 8px 0 0 8px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
    margin: 0 !important;
    height: 100% !important;
    transition: border-color 0.3s ease;
}

.wk-oosn-input-text:focus {
    border-color: #e02b27 !important;
    outline: none;
}

/* The 3D Action Button */
button#wk-oosn-button.wk-oosn-action-btn {
    background: linear-gradient(180deg, #ff4d4d 0%, #e02b27 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 0 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0 8px 8px 0 !important;
    height: 100% !important;
    margin: 0 !important;
    /* 3D Depth Shadows */
    box-shadow: 0 4px 0 #b31d1a, 0 5px 10px rgba(0,0,0,0.1) !important;
    position: relative;
    top: 0;
    transition: all 0.1s ease;
}

button#wk-oosn-button.wk-oosn-action-btn:hover {
    background: linear-gradient(180deg, #ff5c5c 0%, #e6312d 100%) !important;
    top: -1px;
    box-shadow: 0 5px 0 #b31d1a, 0 6px 12px rgba(0,0,0,0.15) !important;
}

/* The "Pressed" Animation */
button#wk-oosn-button.wk-oosn-action-btn:active {
    top: 3px !important;
    box-shadow: 0 1px 0 #b31d1a !important;
}