/* Instagram-specific styles — shared rules live in style.css */

.subButton {
    background-color: #E3F5E3;
    color: black;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
    border-radius: 8px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.subButton:hover {
    background-color: #55A455;
    color: white;
}

.but {
    background-color: #E3F5E3;
    color: #55A455;
    border: none;
    font-weight: bold;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
    border-radius: 8px;
    transition-duration: 0.2s;
    cursor: pointer;
}

.but:hover {
    background-color: #55A455;
    color: white;
}

/* Apply a solid black outline to common name & species name input fields */
#common-name,
#comments,
#species-name {
    border: 0.5px solid black !important;
    outline: none !important;
    padding: 10px;
    font-size: 16px;
    background: white;
    width: 100%;
    border-radius: 4px;
}

#common-name:focus,
#species-name:focus {
    border-color: black !important;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

#common-name:hover,
#species-name:hover {
    border-color: black !important;
}
