/* Style for the form container */
.connectify-form {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    max-width: 500px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


/* Style for form paragraphs/rows */
.connectify-form p {
    margin-bottom: 15px;
}

/* Style for form labels */
.connectify-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}


/* Style for form input fields and textareas */
.connectify-form input[type="text"],
.connectify-form input[type="email"],
.connectify-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important for padding and width to work together */
    transition: border-color 0.3s;
}


/* Style for input fields when they are focused (clicked on) */
.connectify-form input[type="text"]:focus,
.connectify-form input[type="email"]:focus,
.connectify-form textarea:focus {
    border-color: #0073aa; /* WordPress blue */
    outline: none;
}


/* Style for the submit button */
.connectify-form input[type="submit"] {
    background-color: #0073aa; /* WordPress primary blue */
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}


/* Style for the submit button on hover */
.connectify-form input[type="submit"]:hover {
    background-color: #005a87; /* A darker blue */
}


/* --- Admin Area Styles --- */

/* Style for the "Read more..." link in the messages table */
.connectify-read-more {
    color: #0073aa;
    cursor: pointer;
    text-decoration: underline;
    font-weight: bold;
}


.connectify-read-more:hover {
    color: #005a87;
}

/* Style for the full message once revealed */
.message-full {
    display: none; /* Hidden by default by JS, but good to have here */
    white-space: pre-wrap; /* Preserves line breaks from the textarea */
    word-break: break-word; /* Prevents long text from breaking table layout */
}

