/* ---------------------------------------------------
   APPLE MINIMAL UI — CLEAN & ELEGANT
----------------------------------------------------- */

.oio-wrapper {
    max-width: 650px;
    margin: 25px auto;
    padding: 0 14px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    color: #111;
}

/* SECTION TITLES */
.oio-wrapper h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    letter-spacing: -0.3px;
}

/* CARD BLOCK */
.oio-latest-block,
.oio-form-block,
.oio-top-block {
    background: #fff;
    padding: 18px 20px;
    border-radius: 18px;
    margin-bottom: 22px;

    /* Soft Apple shadow */
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ------------------------------
   LATEST LIST (APPLE CLEAN)
--------------------------------*/
.oio-latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oio-latest-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #e6e6e6;
}

.oio-latest-list li:last-child {
    border-bottom: none;
}

/* Poster */
.oio-thumb {
    width: 60px;
    height: 88px;
    border-radius: 12px;
    background: #f2f2f2;
    object-fit: cover;
}

/* Info */
.oio-info {
    flex: 1;
}

.oio-title-line a {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.oio-title-line a:hover {
    text-decoration: underline;
}

/* Requested by */
.oio-by {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

/* ------------------------------
   Status Badges (Apple Soft)
--------------------------------*/
.oio-status {
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 8px;
    margin-left: 8px;
    font-weight: 500;
}

.oio-status.Pending { background: #fff3d1; color: #7a6400; }
.oio-status.Noted   { background: #e4ffee; color: #0d6b32; }
.oio-status.Added   { background: #e1f0ff; color: #0054a8; }

/* ------------------------------
   More Button (iOS style)
--------------------------------*/
.oio-more-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: #f1f1f1;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    transition: 0.15s ease-in-out;
}

.oio-more-btn:hover {
    background: #e3e3e3;
}

/* ------------------------------
   Form Inputs (iOS Smooth)
--------------------------------*/
.oio-form-block input {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    background: #fafafa;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: 0.15s;
}

.oio-form-block input:focus {
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0,122,255,0.15);
    outline: none;
}

/* Submit Button (Apple Blue Button) */
#oio_submit_t {
    width: 100%;
    padding: 14px;
    background: #007aff;
    color: #fff;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.15s;
}

#oio_submit_t:hover {
    background: #0069d9;
}

/* ------------------------------
   Preview Box (very Apple)
--------------------------------*/
.oio-preview-box {
    display: flex;
    gap: 12px;
    background: #f8f8f8;
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 12px;
    align-items: center;
}

.oio-preview-img {
    width: 60px;
    border-radius: 10px;
}

.oio-preview-title {
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

/* ------------------------------
   Top Requesters
--------------------------------*/
.oio-top-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oio-top-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 8px;
}

.oio-rank {
    font-size: 20px;
}

.oio-count {
    font-size: 14px;
    color: #444;
}

/* ------------------------------
   Success / Error
--------------------------------*/
.oio-error {
    background: #ffe7e7;
    color: #c30000;
    padding: 10px;
    border-radius: 10px;
    margin-top: 12px;
}

.oio-success {
    background: #e3ffe9;
    color: #008c3e;
    padding: 10px;
    border-radius: 10px;
    margin-top: 12px;
}
