/* Minimal public styles to complement Tailwind CSS */

/* Override theme styles that might conflict with the roadmap layout. */
.agilepath-roadmap-container h3,
.agilepath-roadmap-container h4 {
    margin-bottom: 0 !important;
}

/* Single Roadmap Item Comment Form Styling */
.agilepath-single-item-container .comment-form-comment textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.agilepath-single-item-container .form-submit input[type="submit"] {
    background-color: #3b82f6 !important; /* blue-500 */
    color: white !important;
    font-weight: bold !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem !important; /* rounded-lg */
    border: none !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    transition: background-color 0.2s ease-in-out;
}

.agilepath-single-item-container .form-submit input[type="submit"]:hover {
    background-color: #2563eb !important; /* blue-600 */
}

.agilepath-single-item-container .comment-reply-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    color: #1f2937; /* gray-800 */
    margin-bottom: 1rem;
}

/* Custom styles for the comments area on single item page */
.agilepath-single-item-container #comments {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 20px !important;
    margin-bottom: 2em !important;
    padding-top: 1.5em !important;
}
