/* ===================================
   BOOKMARKS PAGE - Specific Styles
   =================================== */

.bookmark-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 20px;
    background: #e8f5e9;
    border: 2px solid #2c5f2d;
    border-radius: 8px;
}

.bookmark-form-container h3 {
    margin-top: 0;
    color: #2c5f2d;
    text-align: center;
}

#bookmarkForm {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#bookmarkInput {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
}

#bookmarkInput:focus {
    outline: none;
    border-color: #1b3f1c;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.btn-primary {
    background: #2c5f2d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1b3f1c;
}

.btn-primary:active {
    transform: scale(0.98);
}

.form-help {
    margin: 0;
    font-size: 0.9em;
    color: #666;
    text-align: center;
}

.bookmarks-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.bookmark-item {
    background: white;
    border: 2px solid #2c5f2d;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bookmark-item:hover {
    background: #e8f5e9;
    transform: translateX(-5px);
}

.bookmark-item a {
    flex: 1;
    text-decoration: none;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.1em;
}

.bookmark-text {
    display: inline-block;
}

.btn-remove {
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.5em;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-remove:hover {
    background: #c62828;
    transform: scale(1.1);
}

.btn-remove:active {
    transform: scale(0.95);
}
