#rest-features-list .feature-card {
    height: 100%;
    padding: 1.3rem;
    background: linear-gradient(145deg, #ffffff, #fffdf1);
    box-shadow:
            0 4px 8px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.3s ease;
}

#rest-features-list .feature-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -40%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.25), transparent 70%);
    transform: rotate(25deg);
    pointer-events: none;
    z-index: 0;
}

#rest-features-list .feature-card:hover {
    transform: translateY(-2px);
    box-shadow:
            0 12px 24px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.icon-title {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
}

.icon-title i {
    font-size: 1.1rem;
    color: white;
    border-radius: 50%;
    padding: 0.65rem;
    margin-right: 0.8rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.feature-card.stateless {
    border-color: #ff4d6d40;
}
.feature-card.stateless i {
    background: linear-gradient(135deg, #ff4d6d, #ff8290);
}

.feature-card.interface {
    border-color: #faae4240;
}
.feature-card.interface i {
    background: linear-gradient(135deg, #faae42, #ffd27e);
}

.feature-card.cacheable {
    border-color: #34c98840;
}
.feature-card.cacheable i {
    background: linear-gradient(135deg, #34c988, #74e4b6);
}

.feature-card.client-server {
    border-color: #a076f940;
}
.feature-card.client-server i {
    background: linear-gradient(135deg, #a076f9, #c7a6f9);
}

.guideline-block table tbody tr {
    transition: background-color 0.3s ease;
    box-shadow: inset 0 -1px 0 #ddd;
}

.guideline-block table tbody tr td {
    vertical-align: middle;
}

code {
    padding: 0.3em 0.5em;
    border-radius: 4px;
    color: #7c4d29;
    font-weight: 600;
}

.guideline-block table tbody tr:hover[data-code="2xx"] {
    background-color: #e6f9e6;
}

.guideline-block table tbody tr:hover[data-code="4xx"] {
    background-color: #fff0e6;
}

.guideline-block table tbody tr:hover[data-code="5xx"] {
    background-color: #ffe6e6;
}

.guideline-block {
    margin-bottom: 2.5rem;
}

#get-token-btn {
    background: linear-gradient(135deg, #f7c948, #f0b429);
    border-color: #e09f3e;
    color: #222;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#get-token-btn:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#get-token-btn:active {
    transform: scale(0.98);
}

.token-box {
    background: #fffefb;
    border-left: 5px solid #f7c948;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
    max-width: 100%;
}

.token-scroll {
    background: #fdf6e3;
    border: 1px solid #f5e1a4;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #3a3a3a;
    max-height: 200px;
}

.token-scroll code {
    background: none;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: hidden;
    padding: 0;
}

#cookies-reqs {
    list-style: none;
    margin-left: 0;
}

#cookies-reqs > li {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fffdf8, #fff2d6);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    position: relative;
}

#cookies-reqs details {
    margin-top: 1rem;
    background-color: #d5fbf2;
    border-left: 4px solid #71d6be;
    padding: 1rem;
    border-radius: 0.5rem;
}

#cookies-reqs pre {
    background-color: #d5fbf2;
}

#cookies-reqs pre {
    font-size: 0.9rem;
}

