.item-card {
    list-style: none;
    margin-bottom: 12px;
    width: 100%;
}

.card-submit-wrapper {
    /* Reset Button Styles */
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit; /* Ensures it uses your page's font */
}

/* Hover & Active States */
.card-submit-wrapper:hover {
    background-color: #2a2a2a;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-submit-wrapper:active {
    transform: translateY(0); /* "Sinks" slightly when clicked */
    background-color: #1f1f1f;
}

/* Inner Text Styling */
.item-title {
    color: #4dabff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.card-submit-wrapper:hover .item-title {
    text-decoration: underline;
}

.item-url {
    font-size: 0.85rem;
    color: #888;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.url-label {
    color: #555;
    font-weight: bold;
}